type compress/flate.decompressor
24 uses
compress/flate (current package)
inflate.go#L267: type decompressor struct {
inflate.go#L292: step func(*decompressor)
inflate.go#L302: func (f *decompressor) nextBlock() {
inflate.go#L335: func (f *decompressor) Read(b []byte) (int, error) {
inflate.go#L355: func (f *decompressor) Close() error {
inflate.go#L367: func (f *decompressor) readHuffman() error {
inflate.go#L479: func (f *decompressor) huffmanBlock() {
inflate.go#L507: f.step = (*decompressor).huffmanBlock
inflate.go#L614: f.step = (*decompressor).huffmanBlock // We need to continue this work
inflate.go#L623: func (f *decompressor) dataBlock() {
inflate.go#L655: func (f *decompressor) copyData() {
inflate.go#L672: f.step = (*decompressor).copyData
inflate.go#L678: func (f *decompressor) finishBlock() {
inflate.go#L685: f.step = (*decompressor).nextBlock
inflate.go#L696: func (f *decompressor) moreBits() error {
inflate.go#L708: func (f *decompressor) huffSym(h *huffmanDecoder) (int, error) {
inflate.go#L750: func (f *decompressor) makeReader(r io.Reader) {
inflate.go#L786: func (f *decompressor) Reset(r io.Reader, dict []byte) error {
inflate.go#L787: *f = decompressor{
inflate.go#L792: step: (*decompressor).nextBlock,
inflate.go#L810: var f decompressor
inflate.go#L814: f.step = (*decompressor).nextBlock
inflate.go#L829: var f decompressor
inflate.go#L833: f.step = (*decompressor).nextBlock
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |